From 6b5ba8d25d0afcd3c444342c7339e5411edc477f Mon Sep 17 00:00:00 2001 From: Jonathan Blandford Date: Mon, 23 Feb 2004 22:07:55 +0000 Subject: [PATCH] Seth was confused by keybindings. They should be Alt, not Ctl. Also, Mon Feb 23 16:52:12 2004 Jonathan Blandford * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_class_init): Seth was confused by keybindings. They should be Alt, not Ctl. Also, A-Home should go home, not up. --- ChangeLog | 7 +++++++ ChangeLog.pre-2-10 | 7 +++++++ ChangeLog.pre-2-4 | 7 +++++++ ChangeLog.pre-2-6 | 7 +++++++ ChangeLog.pre-2-8 | 7 +++++++ gtk/gtkfilechooserdefault.c | 12 ++++++------ 6 files changed, 41 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8769b845a4..77cc4393a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Mon Feb 23 16:52:12 2004 Jonathan Blandford + + * gtk/gtkfilechooserdefault.c + (gtk_file_chooser_default_class_init): Seth was confused by + keybindings. They should be Alt, not Ctl. Also, A-Home should go + home, not up. + Mon Feb 23 15:23:23 2004 Jonathan Blandford * gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 8769b845a4..77cc4393a4 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,10 @@ +Mon Feb 23 16:52:12 2004 Jonathan Blandford + + * gtk/gtkfilechooserdefault.c + (gtk_file_chooser_default_class_init): Seth was confused by + keybindings. They should be Alt, not Ctl. Also, A-Home should go + home, not up. + Mon Feb 23 15:23:23 2004 Jonathan Blandford * gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 8769b845a4..77cc4393a4 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,10 @@ +Mon Feb 23 16:52:12 2004 Jonathan Blandford + + * gtk/gtkfilechooserdefault.c + (gtk_file_chooser_default_class_init): Seth was confused by + keybindings. They should be Alt, not Ctl. Also, A-Home should go + home, not up. + Mon Feb 23 15:23:23 2004 Jonathan Blandford * gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 8769b845a4..77cc4393a4 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,10 @@ +Mon Feb 23 16:52:12 2004 Jonathan Blandford + + * gtk/gtkfilechooserdefault.c + (gtk_file_chooser_default_class_init): Seth was confused by + keybindings. They should be Alt, not Ctl. Also, A-Home should go + home, not up. + Mon Feb 23 15:23:23 2004 Jonathan Blandford * gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 8769b845a4..77cc4393a4 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,10 @@ +Mon Feb 23 16:52:12 2004 Jonathan Blandford + + * gtk/gtkfilechooserdefault.c + (gtk_file_chooser_default_class_init): Seth was confused by + keybindings. They should be Alt, not Ctl. Also, A-Home should go + home, not up. + Mon Feb 23 15:23:23 2004 Jonathan Blandford * gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c index c49dba1889..73c1beb746 100644 --- a/gtk/gtkfilechooserdefault.c +++ b/gtk/gtkfilechooserdefault.c @@ -401,21 +401,21 @@ gtk_file_chooser_default_class_init (GtkFileChooserDefaultClass *class) 0); gtk_binding_entry_add_signal (binding_set, - GDK_Up, GDK_CONTROL_MASK, + GDK_Up, GDK_MOD1_MASK, "up-folder", 0); gtk_binding_entry_add_signal (binding_set, - GDK_KP_Up, GDK_CONTROL_MASK, + GDK_KP_Up, GDK_MOD1_MASK, "up-folder", 0); gtk_binding_entry_add_signal (binding_set, - GDK_Home, GDK_CONTROL_MASK, - "up-folder", + GDK_Home, GDK_MOD1_MASK, + "home-folder", 0); gtk_binding_entry_add_signal (binding_set, - GDK_KP_Home, GDK_CONTROL_MASK, - "up-folder", + GDK_KP_Home, GDK_MOD1_MASK, + "home-folder", 0); _gtk_file_chooser_install_properties (gobject_class); -- 2.30.2